* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

body {
    background: linear-gradient(145deg, #fef6f6 0%, #f8fafc 100%);
    min-height: 100vh;
    padding: 40px 24px;
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1300px;
    width: 100%;
}

/* Header */
.about-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background-color: #e53e3e;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.logo-text {
    font-weight: 600;
    font-size: 22px;
    color: #2d3748;
}

.about-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
}

.back-link {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 500;
    background: white;
    padding: 10px 18px;
    border-radius: 40px;
    border: 1px solid #ffe2e2;
    transition: all 0.2s;
}

.back-link i {
    margin-right: 6px;
}

.back-link:hover {
    background: #fef2f2;
    border-color: #e53e3e;
}

/* Grid layout */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

/* Card style (matches dashboard) */
.card {
    background: white;
    border-radius: 24px;
    padding: 28px 26px;
    box-shadow: 0 12px 30px -8px rgba(0,0,0,0.05);
    border: 1px solid #ffeae8;
    margin-bottom: 20px;
}

.card h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card h2 i {
    color: #e53e3e;
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 24px 0 12px;
}

/* About text */
.about-text p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin-bottom: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    margin-bottom: 14px;
    font-size: 15px;
}

.feature-list i {
    color: #e53e3e;
    width: 22px;
    font-size: 1.1rem;
}

.impact-stats {
    display: flex;
    justify-content: space-between;
    background: #fef9f9;
    padding: 18px;
    border-radius: 20px;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #e53e3e;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
}

/* Contact form */
.form-intro {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    font-size: 15px;
    transition: all 0.2s;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.submit-btn {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 8px 16px rgba(229, 62, 62, 0.2);
    width: 100%;
}

.submit-btn:hover {
    background: #c53030;
}

/* Contact info card */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    margin-bottom: 16px;
    font-size: 15px;
}

.contact-info i {
    width: 24px;
    color: #e53e3e;
}

/* Quick FAQ link */
.quick-faq {
    background: white;
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #ffeae8;
    margin-top: 10px;
}

.quick-faq i {
    color: #e53e3e;
    font-size: 20px;
}

.quick-faq a {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 500;
}

.quick-faq a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-header {
        flex-direction: column;
        align-items: start;
    }
}